home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2008 February (DVD)
/
PCWorld_2008-02_DVD.iso
/
v cisle
/
PHP
/
PHP.exe
/
xampp-win32-1.6.5-installer.exe
/
htdocs
/
xampp
/
langsettings.php
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
PHP Script
|
2007-12-20
|
394 b
|
15 lines
<?php
$lang=@file_get_contents("lang.tmp");
@include("lang/languages.php");
@include("lang/en.php");
@include("lang/$lang.php");
if($lang=="zh")
{
header("Content-Type: text/html; charset=gb2312");
}
else if($lang=="jp")
{
header("Content-Type: text/html; charset=shift-jis");
}
?>